Tagged Questions
The command line interface of the PHP programming lauage. It can be used as an alternative to shell script, perl script and so on.
12
votes
6answers
940 views
set_time_limit is not effecting PHP-CLI
any solution to this ?
#!/usr/bin/php -q
<?php
set_time_limit(2);
sleep(5); // actually, exec() call that takes > 2 seconds
echo "it didn't work again";
7
votes
2answers
157 views
What are the best/popular libraries for developing CLI apps/scripts?
Many of the component libraries and toolkits I'm familiar with lack CLI-specific libraries (zend, kohana, etc..). Are there any libraries/tools that are designed specifically for developing CLI ...
7
votes
5answers
6k views
How do I find my server's IP address in PHP(CLI)
Aside from the obvious (localhost, 127.0.0.1) does PHP (command line interface!) have a mechanism for discovering the IP of the computer the script is running on?
$SERVER[] will not work as this is ...
6
votes
5answers
1k views
How to disable ctrl-z, ctrl-c from breaking out of a php script
Can someone point me in the correct direction for researching how to prevent users from breaking out of a php script with ctrl-z, ctrl-c?
5
votes
3answers
2k views
Debugging php-cli scripts with xdebug and netbeans?
I have managed to initiate php-cli script debug session from the IDE itself, but I need to start the debugging session from the shell / command line. These are rather complex maintenance PHP scripts ...
5
votes
7answers
434 views
PHP - how to best determine if the current invocation is from CLI or web server?
I need to determine whether the current invocation of PHP is from the command line (CLI) or from the web server (in my case, Apache with mod_php).
Any recommended methods?
4
votes
5answers
335 views
Run PHP function inside Bash (and keep the return in a bash variable)
I am trying to run a PHP function inside Bash... but it is not working.
#! /bin/bash
/usr/bin/php << 'EOF'
<?php echo getcwd(); ?>
EOF
In the reality, I needed to keep the return value ...
4
votes
2answers
351 views
What does it mean to run PHP in quiet mode?
You can run PHP with the -q command line switch. The manual only say:
Quiet-mode. Suppress HTTP header
output (CGI only).
What does that actually mean in practical terms?
4
votes
3answers
979 views
Clear PHP CLI output
I'm trying to get a "live" progress indicator working on my php CLI app. Rather than outputting as
1Done
2Done
3Done
I would rather it cleared and just showed the latest result. system("command \C ...
4
votes
5answers
1k views
where can I find the php.ini for php-cli
It appears that the php command line is using a different php.ini from the main php interpreter. I am using Ubuntu 10.4. My problem is that in the main php.ini I have included an extra path for an ...
3
votes
2answers
86 views
php stdin from bash pipe and heredoc
Can I receive input from both a pipe, and a heredoc, and use them both from within php on the command line.
I want to do something like this:
bash$ ls -l | php <<'code'
<?php
echo ...
3
votes
1answer
167 views
Browscap.ini throwing an error when loading PHP (command line - PHP_CLI)
I have a cronjob that summarize browser statistics. This cronjob loads data and then use the get_browser() PHP function to parse the browser information.
Here's what I did:
cd /etc/php5/cli/conf.d
...
3
votes
4answers
419 views
Curl - Does not work on Windows CLI
Curl would not work on windows Command Prompt but it working fine on the browser (localhost)
Error:
C:\wamp\www\site>C:\wamp\bin\php\php5.3.0\php.exe -f index.php
PHP Fatal error: Call to ...
3
votes
2answers
106 views
PHP DomDocument behaving differently in CLI and Web Browser
I 'm using the following code:
$doc = new DOMDocument();
$doc->loadHTML("<i><p><strong>From: fsong | #001</strong><br/>I hate you DomDocument ...
3
votes
1answer
266 views
Equivalent of $_ENV['APACHE_RUN_USER'] in PHP-CLI
I'm running a PHP script from CLI interface.
How can I get the running user name like when I'm in Apache ( $_ENV['APACHE_RUN_USER'] )?
At now I'm using exec('whoami'), but is not ...
3
votes
2answers
549 views
execute a string of PHP code on the command line
I'd like to be able to run a line of PHP code on the command line similar to how the following options work:
:~> perl -e "print 'hi';"
:~> python -c "print 'hi'"
:~> ruby -e "puts 'hi'"
...
3
votes
1answer
402 views
php cli script hangs with no messages
I've written a PHP script that runs via SSH and nohup, meant to process records from a database and do stuff with them (eg. process some images, update some rows).
It works fine with small loads, up ...
3
votes
2answers
212 views
php-cli: What is the best way to detect the hosting OS?
I have a script which I want to run on windows under Cygwin and on Linux. I have to make distinction between the two running environment for some purposes. What is the best way to do it?
3
votes
2answers
6k views
How to run a PHP script from the command line with MAMP?
I have MAMP installed. Now I am trying to run a script from the command line, but I can't seem to get it to work.
How should I set up my environment so that I can run a script from the command line ...
2
votes
3answers
43 views
Is there an IDE for PHP CLI?
I downloaded Eclipse PDT, Zend, and Netbeans (trial) and they only seem to have support for PHP on a web server. I want to use PHP CLI as a programming language, is there an IDE for it?
Edit: I don't ...
2
votes
1answer
105 views
How to get My Twitter Home Timeline in Command Prompt Using PHP and Twitter API
I want to get all my home timeline updates in my windows command line. I can provide the username and password in php code.
How is it possible to get a number of updates when I use following in my ...
2
votes
5answers
84 views
Detecting the environment in PHP CLI scripts
I've seen several questions on StackOverflow that handle how to detect the user environment when a script is served via Apache and have such a system in place which works perfectly.
The script depends ...
2
votes
1answer
136 views
php popen() opts with a space in it?
Hii i have this code :
$handle = popen("php -q nah.php -p=". '$part' . " 2>&1", "r");
while (!feof($handle))
{
$read = fread($handle, ...
2
votes
1answer
103 views
PHP-CLI seems to parse JSON string from argument
Using PHP 5.3 if I send a JSON encoded string as an arugment via command line...
/usr/local/bin/php -q /path/to/script.php {"key":"test","cache":1}
... and in script.php the code is:
<?php ...
2
votes
3answers
453 views
Set max_execution_time in PHP CLI
I know that PHP CLI is usually used because of none time limits and primary because it is not using Apache threads/processes.
But is there any way how to explicitly set the max_execution_time for ...
2
votes
3answers
86 views
Current path in PHP on Windows (standalone CLI)
I was trying to get path current path in PHP. I tried looking though phpinfo();, but I haven't found any interesting values which could be used to get path to my script. There is no nice values which ...
2
votes
2answers
108 views
Is there a better console for PHP than running in interactive mode
Is there something like ipython for PHP? Syntax highlighting and not having the console exit to shell on the first exception would be nice to haves. :)
2
votes
2answers
612 views
How to pass parameters from command line to $_POST in php-script?
I know this could sound a little weird but I need to pass some parameters to a $_POST array. Similar to the way apache does it, or any other web server.
Unfortunately I couldn't find ...
2
votes
3answers
112 views
Compiling From Source vs. Pre-compiled Windows Binaries
So in the past I've always used the pre-compiled Windows PHP binaries but then this guide caught my attention.
That brings me to this:
Why would someone want to compile PHP from the sources when ...
2
votes
2answers
417 views
Setting argc/argv and including a PHP CLI script
If I've got a CLI script foo written in PHP that requires various command line options, can I invoke foo from another PHP script by first writing to $argv and $argc and then doing include('foo')? ...
2
votes
1answer
424 views
Can I use netcat to run PHP CLI w/ arguments?
I'm trying to create a debug listener that listens on a port for a data string and forwards it to a php script as an argument. How can I specify that the input to the port should be used as an ...
2
votes
3answers
244 views
PHP Reading Large Text Files
I'm reading a flie with essentially upwards of ~500,000 lines separated out by | for the columns which I am parsing and trying to insert into the database through the CLI.. Is there a better way to ...
2
votes
6answers
213 views
how to make php page disabled from browser
I'm writing a PHP script that I want to disable from web access (I will ask users to move it out of the web root and execute via CLI, but you never know if they'll listen!)
Is there a simple function ...
2
votes
3answers
1k views
php -i | find “extension_dir” don't take effect after modified its value
i wanna using curl in php script and run it in command line mode.
here is the script
<?php
//enable_dl("php_curl.dll");
$ch = curl_init();
$options=array(
...
2
votes
3answers
90 views
php-cli outputs instead of executing
Im using Debian testing, i have installed php-cli and when i try to execute a php script it output the source instead of executing it.
Example:
php test.php
<?
phpinfo();
?>
any ideas ...
2
votes
5answers
563 views
Get current PHP executable from within script?
I want to run a PHP cli program from within PHP cli. On some machines where this will run, both php4 and php5 are installed. If I run the outer program as
php5 outer.php
I want the inner script ...
2
votes
1answer
2k views
How can I debug a PHP CLI script with xdebug?
I haven't quite figured this out. EVERY piece of documentation I've found covers how to use xdebug to debug scripts running in Apache. I need to debug a php CLI script.
So, for instance, how do I ...
2
votes
4answers
1k views
Suppressing output from exec() calls in PHP
I have a number of command line scripts in PHP that use exec() to perform tasks such as restarting services, loading MySQL timezone files, etc. While exec() itself does not output anything to the ...
2
votes
2answers
1k views
Generic “Killed” error in PHP CRON job
I am working on a CRON job in PHP which has to do a lot of heavy lifting via the database. Think lots and lots of loops.
It executes properly when I limit the data set, but when I run it against ...
2
votes
3answers
473 views
PHP-CLI + File Permissions
When you run a php script in the command line, does is execute with the read/write permissions of the current user or what?
1
vote
4answers
62 views
php cli include_once error (answered)
I am writing a php cli script, and my includes and requires are generating errors.
"PHP Warning: include_once(SCRIPT FOLDER): failed to open stream: Inappropriate ioctl for device in SCIPT PATH on ...
1
vote
1answer
89 views
DirectoryIterator::getExtension() version
I'm running a PHP script from CLI that user the DirectoryIterator::getExtension() method in PHP.
The version of PHP I'm running under is 5.3.5, but I keep getting errors saying Fatal error: Call to ...
1
vote
1answer
45 views
PHP debugger for Vim: Debug Commandline scripts
My vim debugger requires me to set an Xdebug cookie in my browser, by appending ?XDEBUG_SESSION_START=1, after which I can start debugging.
But I cannot set this cookie/session when calling a script ...
1
vote
1answer
72 views
shell_exec returns NULL but when tried from console, it works
I have three php scripts. One, I start with init script. The second is started by the first one itself and the second then uses shell_exec to get output from the third script by passing various params ...
1
vote
2answers
167 views
PHP sockets, permanent connection to server to receive Events from Asterisk AMI?
I'm looking to write a PHP script to act as a mini "daemon" to receive data from a remote socket. The remote server is an Asterisk VoIP server and I'll be connecting to the Asterisk Management ...
1
vote
2answers
38 views
PHP CLI: what directory?
I have a php cli script which is executed from /, but the script lies in /opt/script/script.php. How can I get the dynamic location of the script from within the script
$location = ... (Get the ...
1
vote
3answers
65 views
PHP CLI - something like $PATH
I want to ask you if there is something like UNIX $PATH for PHP CLI.
Eg., I want to use
php a2addvhost.php example.com
instead of
php /usr/share/php/a2addvhost.php example.com
I tried to ...
1
vote
4answers
150 views
Manipulating data to matrix-like format in PHP
Given input, which shows tag assignments to images, as follows (reading this from php://stdin line by line, as the input can get rather large)
image_a tag_lorem
image_a tag_ipsum
image_a tag_amit
...
1
vote
2answers
68 views
php cli popen() include file once?
I am doing this in my main file lets say index.php
$handle = popen("php -q nah.php -p=". escapeshellarg($part) . " 2>&1", "r");
while (!feof($handle))
{
$read = fread($handle, 2096);
...
1
vote
2answers
75 views
php provoke a php file from popen() with arguments or paranthesis
I have been trying to do this:
$handle = popen('php -q nah.php?part='. $part . ' 2>&1', 'r');
while (!feof($handle))
{
$read = fread($handle, 2096);
echo $read;
}
pclose($handle);
...