在语法上回显 php 标识符!

发布于 2024-11-25 07:33:27 字数 233 浏览 3 评论 0原文

在我的 PHP 应用程序中的某个位置,我需要在语法上回显 PHP 的全局变量,即类似的东西 echo "$_POST['提交']"; 但这是行不通的。谁能解释一下吗?

实际的代码是: echo "";

At a place in my PHP application, I need to echo PHP's Global variable's Syntactically, i.e. something of the sort
echo "$_POST['submit']";
But this ain't working. Can anyone please shed some light on it?

The actual piece of code is:
echo "<?php if(isset($_POST['submit'])) echo 'value="'. $_POST['{$column['Field']}'] .'"'; ?>";

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

惯饮孤独 2024-12-02 07:33:27

这是不正确的:

<?php if(isset($_POST['submit'])) echo 'value="'. $_POST['{$column['Field']}']

切换到此:

<?php 
 if(isset($_POST['submit'])) 
 echo 'value="'. $_POST[$column['Field']];

// or 
 echo 'value="'. $_POST['submit'].'"';

?>

选择哪个

无论您需要更新:从评论中

echo <<<HERE_DOC
  <?php if(isset($_POST['submit'])) 
        echo 'value="'. $_POST['{$column['Field']}'] .'"'; ?>';
HERE_DOC;

。这将回显定界符字符串之间的所有字符串

阅读有关 HEREDOC 语法

This is not correct:

<?php if(isset($_POST['submit'])) echo 'value="'. $_POST['{$column['Field']}']

switch to this:

<?php 
 if(isset($_POST['submit'])) 
 echo 'value="'. $_POST[$column['Field']];

// or 
 echo 'value="'. $_POST['submit'].'"';

?>

whichever is the one you need

UPDATE: from the comment.

echo <<<HERE_DOC
  <?php if(isset($_POST['submit'])) 
        echo 'value="'. $_POST['{$column['Field']}'] .'"'; ?>';
HERE_DOC;

this will echo the all the string in between the heredoc string

Read More about the HEREDOC Syntax

梦在深巷 2024-12-02 07:33:27

尝试使用 nowdoc

$str = <<<'EOD'
<?php if(isset($_POST['submit'])) echo 'value="'. $_POST['{$column['Field']}'] .'"'; ?>
EOD;

这是从 PHP 5.3 开始提供的,它不会将变量值插入到字符串中

来回显它,只需执行 a:

echo $str;

或 a

echo htmlentities($str);

Try using nowdoc

$str = <<<'EOD'
<?php if(isset($_POST['submit'])) echo 'value="'. $_POST['{$column['Field']}'] .'"'; ?>
EOD;

This is available from PHP 5.3 and it doesn't interpolate into string the variable value

to echo it simply do a:

echo $str;

or a

echo htmlentities($str);
小清晰的声音 2024-12-02 07:33:27

当回显带有大量双引号和单引号的复杂内容时,您可能应该使用 nowdoc 语法: http ://php.net/manual/en/language.types.string.php

尝试如下操作:

echo <<<'STRING'
<?php if(isset($_POST['submit'])) echo 'value="'. $_POST['{$column['Field']}'] .'"'; ?>
STRING;

您也可以使用单引号执行此操作,但需要转义字符串中的所有单引号,例如:

echo '<?php if(isset($_POST[\'submit\'])) echo \'value="\'. $_POST[\'{$column[\'Field\']}\'] .\'"\'; ?>';

最后,如果你要输出到 HTML,您需要使用 htmlspecialchars()< 转换为 <, '>'到>,以及&&

echo htmlspecialchars(<<<'STRING'
<?php if(isset($_POST['submit'])) echo 'value="'. $_POST['{$column['Field']}'] .'"'; ?>
STRING
);

和:

echo htmlspecialchars('<?php if(isset($_POST[\'submit\'])) echo \'value="\'. $_POST[\'{$column[\'Field\']}\'] .\'"\'; ?>');

When echoing something complex with lots of double and single quotes you should probably use nowdoc syntax: http://php.net/manual/en/language.types.string.php

Try something like:

echo <<<'STRING'
<?php if(isset($_POST['submit'])) echo 'value="'. $_POST['{$column['Field']}'] .'"'; ?>
STRING;

You can also do this with single quotes, but you need to escape all the single quotes in your string, like:

echo '<?php if(isset($_POST[\'submit\'])) echo \'value="\'. $_POST[\'{$column[\'Field\']}\'] .\'"\'; ?>';

Finally, if you're outputting to HTML you need to use htmlspecialchars() to convert < to <, '>' to >, and & to &.

echo htmlspecialchars(<<<'STRING'
<?php if(isset($_POST['submit'])) echo 'value="'. $_POST['{$column['Field']}'] .'"'; ?>
STRING
);

And:

echo htmlspecialchars('<?php if(isset($_POST[\'submit\'])) echo \'value="\'. $_POST[\'{$column[\'Field\']}\'] .\'"\'; ?>');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文