Home  >  Article  >  Backend Development  >  有关php的异常

有关php的异常

WBOY
WBOYOriginal
2016-06-13 13:30:021171browse

有关php的错误
echo ".$row["m_title",0,30]."..."";
报的错是Parse error: syntax error, unexpected T_STRING, expecting ',' or ';'
请问各位,上面那句话哪里有错呀,我都看了N遍了,不知道怎么解决!请大家帮我解决一下吧!

------解决方案--------------------
错误的地方很多

echo "".$row["m_title"]."";
例如这样是正常的

$row["m_title",0,30]

没有这么写的...

因为不知道你这个是什么东西 所以...
------解决方案--------------------

探讨

错误的地方很多

echo "".$row["m_title"]."";
例如这样是正常的

$row["m_title",0,30]

没有这么写的...

因为不知道你这个是什么东西 所以...

------解决方案--------------------
$row["m_title",0,30]
写作
substr($row["m_title"],0,30)

愿上帝保佑你$row["m_title"]中只有汉字或只有英文
------解决方案--------------------
顺便一下,

echo ".$row["m_title",0,30]."..."";

=>
1)
echo ".substr($row["m_title"],0,30)."...";
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn