fwrite:意外的t_string(php)

时间:2017-12-27 19:54:20

标签: php fwrite

所以我目前有( functions.php

1 function onlineplayers() {
2   $fp = fsockopen('12.34.56.78', 12345, $errno, $errstr, 4);
3    fwrite($fp, '\xFE');
4    $answer = fread($fp, 256);
5    ...
6 }

ping网络服务器并嵌入

1 <?php require("functions.php"); ?>

但运行网站会给出

  

解析错误:语法错误,意外&#39; &#39;第3行的functions.php中的(T_STRING)

但问题是什么?我只是想做 fwrite(&#34; a&#34;,&#34; a&#34;); 但它不会工作。

0 个答案:

没有答案