gpt4 book ai didi

php - Sublime Text 2 Php Snippet 省略变量

转载 作者:可可西里 更新时间:2023-10-31 23:52:07 25 4
gpt4 key购买 nike

我在 sublime text 2 中创建了以下代码片段,但是当我在 Php 脚本中使用它时,它会自动删除所有变量(不是它们的值)。

<snippet>
<content><![CDATA[

include 'constants.php';

// Defining connection

$connection = mysqli_connect(HOST, USERNAME, PASSWORD);

// If unable to connect

if(!$connection)
{
$error = 'Unable to connect to database server';
echo $error;
exit();
}

// Checking the encoding

if(!mysqli_set_charset($connection, 'utf8'))
{
$error = 'Unable to set database connection decoding';
echo $error;
exit();
}

// Selecting Database

if (!mysqli_select_db($connection, DATABASE))
{
$error = 'Unable to locate the .'. DATABASE;
echo $error;
exit();
}
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>phpMysqlConnection</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<!-- <scope>source.php</scope> -->
</snippet>

到底发生了什么?

最佳答案

您需要使用反斜杠“\”对每个“$”进行转义。

\$error;

关于php - Sublime Text 2 Php Snippet 省略变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11866241/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com