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?

1 Answer 1

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

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.