|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2011-01-25 15:54 UTC] larry dot l dot low at gmail dot com
[2011-01-25 16:09 UTC] spektom at gmail dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 03:00:01 2025 UTC |
Description: ------------ Using either of the below no longer work when upgrading to 0.2.8. $e is not null but the ssh command does not seem to execute. Reproduce code: --------------- $e = expect_popen('ssh -o "StrictHostKeyChecking no" -p 22 user@myhost'); print get_resource_type($e); # outputs stream or $e = fopen('expect://ssh -o "StrictHostKeyChecking no" -p 22 user@myhost'); print get_resource_type($e); # outputs stream Expected result: ---------------- Command to be executed. Actual result: -------------- Command is not executed.