这是一个菜鸟问题,但是...
我正在另一个使用 preg_match 获取字符串的 php 文件中调用一个函数。然后我想使用 substr 来获取该字符串的特定部分,但是它不输出字符串中的任何字符。当我从函数中替换变量时preg_match
,我得到了正确的输出。
这是基本代码:
$title = $stream["song1"]; // From a preg_match in an external php file
echo $title; // Correctly prints the song name, in this case "mySong"
echo substr($title, 0, 1); // Outputs a "<" symbol (why??)
如果我运行上面相同的三行,但对歌曲标题进行硬编码:
$title = "mySong";
echo $title; // Correctly prints the song name, in this case "mySong"
echo substr($title, 0, 1); // Outputs a "m" symbol (correct)
此外,当我检查变量的类型时$title
,它返回“字符串”。我确定我在做一些非常愚蠢的事情......有人可以帮忙吗?