反引号``叫什么?

发布于 2024-11-07 05:33:48 字数 37 浏览 0 评论 0原文

在评估其内容的上下文中,反引号运算符 (``) 被称为什么?

What are the backtick operators (``) called in the context of evaluating their content?

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

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

发布评论

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

评论(3

网白 2024-11-14 05:33:48

反引号 (``) 是一个执行运算符。 PHP 将尝试将反引号的内容作为 shell 命令执行;输出将被返回(即,它不会简单地转储到输出;它可以分配给一个变量)。反引号运算符的使用与 shell_exec() 相同。

例如,

<?php
    $output = `ls -la`;
    echo "<pre>$output</pre>";
?>

有关详细信息,请参阅执行运算符< /em>。

Backticks (``) is an execution operator. PHP will attempt to execute the contents of the backticks as a shell command; the output will be returned (i.e., it won't simply be dumped to output; it can be assigned to a variable). Use of the backtick operator is identical to shell_exec().

For example,

<?php
    $output = `ls -la`;
    echo "<pre>$output</pre>";
?>

For more information, refer to Execution Operators.

囚我心虐我身 2024-11-14 05:33:48

如果您指的是 Bash 那么反引号被称为“命令替换” ”。 $() 提供类似的功能。

If you're referring to Bash then the backticks are known as "command substitution". $() provides similar functionality.

自由范儿 2024-11-14 05:33:48

在 Perl 中,反引号运算符有一个同义词:qx//。 q 和 x 代表“引用并执行”。您也会看到它也被称为“命令”,但坦率地说,在 Perl 社区和大部分 Perl 文档中,它们只是被称为反引号运算符或反引号。在 Perl 程序的上下文中,除了反引号或反引号运算符之外,将它们称为任何其他名称只会让人们更难知道他们在说什么。

In Perl, the backtick operator has a synonym: qx//. The q and x stand for "quote & execute." You'll see it referred to as 'command' too, but frankly, in the Perl community and throughout most of the Perl documentation, they're just called the backtick operator or backticks. Calling them anything other than backticks or the backtick operator in the context of a Perl program will simply make it harder to know what one is talking about.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文