謝晒的PHP網頁設計
聯絡E-mail:
sean0704@gmail.com
站內搜尋
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
Newer Post
Older Post
Home
View mobile version
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment