2

I need to build an CLI SAPI based daemon, PHP app with cronjobs support for iOS platform. We have dedicated server.

What kind of PHP environment to run this type of PHP applications?

Smart Bird
  • 225
  • 1
  • 8

1 Answers1

2

Check PHP CLI SAPI module whether installed

<?php
if (PHP_SAPI === 'cli')
{
   // ...
}
?> 

If not installed, then install it Debian Based Server

sudo apt-get install php5-cli

Redhat/CentOS Based Servers

yum install php5-cli

and make sure you are running your script in CLI mode

Md Mahbubur Rahman
  • 414
  • 2
  • 7
  • 15