11 2017 档案

摘要:1. array_merge 字符索引:后面的覆盖前面的。 如果输入的数组中有相同的字符串键名,则该键名后面的值将覆盖前一个值。 混合索引:如果数组包含数字键名,后面的值将不会覆盖原来的值,而是附加到后面。从左到右,依次重新索引 如果只给了一个数组并且该数组是数字索引的,则键名会以连续方式重新索引。 阅读全文
posted @ 2017-11-23 20:22 brookin 阅读(184) 评论(0) 推荐(0)
摘要:kill 0 pid sending the signal 0 to a given PID just checks if any process with the given PID is running and you have the permission to send a signal t 阅读全文
posted @ 2017-11-22 10:43 brookin 阅读(257) 评论(0) 推荐(0)
摘要:Under Linux, sleeping time is ignored, but under Windows, it counts as execution time. Note The set_time_limit() function and the configuration direct 阅读全文
posted @ 2017-11-22 10:25 brookin 阅读(182) 评论(0) 推荐(0)
摘要:构建工程 composer create project test/name project_name help composer help create project 参数 prefer dist 强制使用压缩包,而不是克隆源代码 prefer source 优先使用源代码 阅读全文
posted @ 2017-11-21 20:51 brookin 阅读(154) 评论(0) 推荐(0)
摘要:PHPUnit 运行指定的 testCase phpunit tests/Screw/StrTest 运行指定的 testCase Method phpunit tests/Screw/StrTest filter Println 注意:Method 是大小写敏感的 阅读全文
posted @ 2017-11-21 20:48 brookin 阅读(138) 评论(0) 推荐(0)