Score:-2

what the meaning of #!/usr/bin/php -q

hu flag

I look at some php script in centos,I notice there is #!/usr/bin/php -q

What is the meaning of this option? because I cannot see it in php --help

Score:2
jp flag

The manpage for php(1) describes this option, and it is also documented in the PHP Manual; Command line options:

Option Long Option Description
-q --no-header Quiet-mode. Suppress HTTP header output (CGI only).
Score:0
cn flag

The line itself is known as a "shebang" or, more formally, an Interpreter Directive.
It tells the shell which interpreter (and options) to use to process [the rest of] the script.

mangohost

Post an answer

Most people don’t grasp that asking a lot of questions unlocks learning and improves interpersonal bonding. In Alison’s studies, for example, though people could accurately recall how many questions had been asked in their conversations, they didn’t intuit the link between questions and liking. Across four studies, in which participants were engaged in conversations themselves or read transcripts of others’ conversations, people tended not to realize that question asking would influence—or had influenced—the level of amity between the conversationalists.