站內搜尋

Friday, January 16, 2015

[PHP] 從 fopen 的 handle 去判斷是哪種開啟方式(mode)?


fopen 可以使用不同的開啟方式 見官網
透過 
stream_get_meta_data() 可以得到詳細的 handle 資料,其中包括 fopen 的開啟方式(mode)
$handle = fopen('abc.txt', 'r+');
$arr = stream_get_meta_data($handle);
echo $arr['mode'];  //r+

No comments:

Post a Comment