jQuery风格在PHP中的扩展

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery风格在PHP中的扩展相关的知识,希望对你有一定的参考价值。

  1. /**
  2.  * jquery style extend, merges arrays (without errors if the passed values are not arrays)
  3.  *
  4.  * @return array $extended
  5.  **/
  6. function extend() {
  7. $args = func_get_args();
  8. $extended = array();
  9. if(is_array($args) && count($args)) {
  10. foreach($args as $array) {
  11. if(is_array($array)) {
  12. $extended = array_merge($extended, $array);
  13. }
  14. }
  15. }
  16. return $extended;
  17. }
  18.  

以上是关于jQuery风格在PHP中的扩展的主要内容,如果未能解决你的问题,请参考以下文章

PHP的DBA扩展学习

PHP 代码风格规范 PSR-2 (中文版)

PHP PSR-2 代码风格规范 (中文版)

PHP mysql 扩展库 操作mysql数据库步骤

php的基本语法

使用 jQuery 或 JS 或 PHP 下载目录中的所有文件?