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
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: nanocaiordo at gmail dot com
New email:
PHP Version: OS:

 

 [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: Fri Mar 29 16:01:30 2024 UTC