作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个很长的字符串,我想将其分成多行,以便更容易阅读。但我不确定语法是什么
$xml = array('sXML' =>"<queryxml><entity>Ticket</entity><query><field>Status<expression op=\"$condition1\">$complete</expression></field><condition operator=\"AND\"><field>AccountID<expression op=\"equals\">$userid</expression></field></condition><condition operator=\"AND\"><condition><field>QueueID<expression op=\"NotEqual\">$routine</expression></field></condition><condition operator=\"OR\"><field>QueueID<expression op=\"NotEqual\">$recurring</expression></field></condition><condition operator=\"OR\"><field>QueueID<expression op=\"NotEqual\">$clientmanagement</expression></field></condition></condition></query></queryxml>");
有人可以帮我吗?
最佳答案
只需将其拆分为多个字符串并将它们连接起来,如下所示:
$xml = array('sXML' => "lorem" .
"ipsum" .
"dolor");
或使用heredoc :
$sXML = <<<XML
your text
goes here
XML;
$xml = array('sXML' => $sXML);
关于PHP:将长查询字符串拆分为多行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3717781/
我是一名优秀的程序员,十分优秀!