php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #69421 getopt() fails when daemoning php file
Submitted: 2015-04-10 17:34 UTC Modified: 2015-04-14 20:07 UTC
From: nanocaiordo at gmail dot com Assigned: cmb (profile)
Status: Closed Package: CGI/CLI related
PHP Version: 5.4.39 OS: CloudLinux 6.6
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
50 + 49 = ?
Subscribe to this entry?

 
 [2015-04-10 17:34 UTC] nanocaiordo at gmail dot com
Description:
------------
getopt() return false when daemonizing a PHP script, $argv is properly filled up with all the arguments but getopt() keeps returning false.

Calling the script without 'deamon --pidfile' does work, however something strange is that it outputs X-Powered-By and Content-type in CLI when getopt() fails.








Test script:
---------------
test.sh

#!/bin/bash
. /etc/rc.d/init.d/functions
daemon --pidfile=test.pid test.php -P Pdegub


test.php

#!/usr/bin/env php
<?php
error_reporting(-1);
ini_set('display_errors', 1);
exit(var_dump(getopt('P:')));

Expected result:
----------------
sh ./test.sh

array(1) {
  ["P"]=>
  string(6) "Pdebug"
}


Actual result:
--------------
sh ./test.sh

X-Powered-By: PHP/5.4.39
Content-type: text/html

bool(false)

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2015-04-11 11:13 UTC] nanocaiordo at gmail dot com
All good with PHP 5.5.23
 [2015-04-14 20:07 UTC] cmb@php.net
-Status: Open +Status: Closed -Assigned To: +Assigned To: cmb
 [2015-04-14 20:07 UTC] cmb@php.net
As the problem apparently has been fixed in recent versions, and
PHP 5.4 is in the extented support phase (security fixes only), I'm
closing the ticket.

Thank you for the report, and for helping us make PHP better.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 25 17:01:29 2024 UTC