Tag:

Docker – Ubuntu – bash:ping:找不到命令

我有一个运行Ubuntu的Docker容器,我做了如下: docker run -it ubuntu /bin/bash 但是它似乎没有ping 。 例如 bash: ping: command not found 我需要安装吗? 似乎是一个非常基本的命令丢失。 我试过whereis ping哪个不报任何东西。

我怎样才能ping一个服务器端口与PHP?

我想要一个PHP脚本,它允许你ping一个IP地址和一个端口号( ip:port )。 我发现了一个类似的脚本,但它只适用于网站,而不是ip:port 。 <?php function ping($host, $port, $timeout) { $tB = microtime(true); $fP = fSockOpen($host, $port, $errno, $errstr, $timeout); if (!$fP) { return "down"; } $tA = microtime(true); return round((($tA – $tB) * 1000), 0)." ms"; } //Echoing it will display the ping if the host is up, if not it'll say "down". […]

从PHP中的平面数组构build一棵树

我环顾了互联网,还没有find我要找的东西。 我有一个平面数组,每个元素包含一个“id”和“parent_id”。 每个元素只有一个父亲,但可能有多个孩子。 如果parent_id = 0,则认为它是根级别的项目。 我试图让我的平板数组到一棵树。 我发现的其他样本只是将元素复制到父项,但原始项目仍然存在。 编辑 起始数组的每个元素都是从单独的XML文件中读取的。 如果父文件没有父文件,则文件本身的值为0。 键实际上是string。 我很抱歉,以前的困惑。 希望这更清楚: /编辑 我的起始arrays: 排列 ( [_319_] =>arrays ( [id] => 0 [parent_id] => 0 ) [_320_] =>arrays ( [id] => _320_ [parent_id] => 0 ) [_321_] =>arrays ( [id] => _321_ [parent_id] => _320_ ) [_322_] =>数组 ( [id] => _322_ [parent_id] […]

Ping站点并以PHP返回结果

我想创build一个小的IF过程来检查Twitter是否可用(例如不像现在),并返回true或false。 帮帮我 :)