当前位置: 首页 > 知识库问答 >
问题:

PHP-语法错误,意外T_CONSTANT_ENCAPSED_STRING[已关闭]

宦瀚
2023-03-14
<?php
include_once('assets/libs/posicloud/posicloud.php');

    $cloud=new posicloud();
    $out='';
    foreach ($cloud->list_templates() as $key=>$template)
    {
$out.='<option value=''.$key.'">'.$value["name"].';
    }
  return $out;
?>

谢谢你的帮助!

共有1个答案

荣波
2023-03-14

在PHP中使用字符串时,需要特别注意格式,使用'

$string = 'Hello, world!';
$string = "Hello, world!";

这两个都是有效的,以下是无效的:

$string = "Hello, world';

您还必须注意,以开头的文本中的'不会结束字符串,反之亦然。因此,当字符串包含'时,通常最好使用双引号。

$string = "It's ok here";
$string = 'It\'s ok here too';
 类似资料: