Blogger Information
智仙生
Blog
4
fans
0
comment
2
visits
4147
integral:0
P beans:11.5
Recent Updates
PHP常用数组函数 2021-09-02
php常用字符串函数 2021-09-02
PHP开源项目网址大全 2021-07-20
PHP算法 2021-06-30
Blog classification
算法 1 articles
PHP 3 articles
MySQL 0 articles
Linux 0 articles
ThinkPHP 0 articles
Laravel 0 articles
Yii 0 articles
前端 0 articles
  • List of blog posts
  • PHP常用数组函数

    数组的键/值操作:array_keys()获得数组中的键名array_values()获取数组中所有元素的值array_flip()交换数组中的键和值array_key_exists()检测键名是否位于数组中array_search()在数组中搜索给...

    2021-09-02 16:58 Read 729 comment 0
  • php常用字符串函数

    长度strlen($string)得到字符串长度字符串查找strpos($string, $search[, $offset])在指定字符串中查找目标字符串第一次出现的位置stripos($string, $search[, $offset])忽略大...

    2021-09-02 16:59 Read 1021 comment 0
  • PHP开源项目网址大全

    PHP开源网https://www.php-open.org/

    2021-07-20 11:05 Read 806 comment 0
  • PHP算法

    1.冒泡排序        冒泡排序(Bubble Sort)是一种简单的排序算法。它重复地走访过要排序的数列,依次比较两个元素,如果他们的顺序错误就把他们交换过来。走访数列的工作是重复地进行直到没有再需要交换,也就是说该数列已经排序完成。这个算法的...

    2021-06-30 10:54 Read 1591 comment 0