• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

php递归,静态变量,匿名函数使用

php 搞代码 4年前 (2022-01-23) 22次浏览 已收录 0个评论
    <meta charset="utf-8">    Current To-Do List<body><?php    function make_list($parent) {        global $tasks;        echo '
    '; foreach($parent as $task_id => $todo) { echo "
  1. $todo"; if (isset($tasks[$task_id])) { // 如果当前id有子任务则递归创建菜单 make_list($tasks[$task_id]); } echo "
  2. "; } echo '
'; } $db = mysqli_connect('192.168.31.172' ,'root', 'root', 'phpadvanced'); mysqli_query($db, "set names utf8"); $q = 'SELECT task_id, parent_id, task FROM tasks WHERE date_completed="0000-00-00 00:00:00" ORDER BY parent_id, date_added ASC'; $r = mysqli_query($db, $q); $tasks = array();while (list($task_id, $parent_id, $task) = mysqli_fetch_array($r, MYSQLI_NUM)) { $tasks[$parent_id][$task_id] = $task;}//echo '
'.print_r($tasks,1).'

';make_list($tasks[0]); //把包含顶级任务的数组发送给它, 最顶级的parent_id是0?>

<?php// create the array.// Array structs// StudentId = > ["name" => "Name", "grade" => xx.x];$students = [    256 => ['name' => 'Jon', 'grade' => '98.5'],    2 => ['name' => 'Vance', 'grade' => '85.1'],    9 => ['name' => 'Stephen', 'grade' => '94.0'],    364 => ['name' => 'Steve', 'grade' => '85.1'],    68 => ['name' => 'Rob', 'grade' => '74.6'],];function name_sort($x, $y) {    static $count = 1;    echo "

Iteration $count: {$x['name']} vs. {$y['name']}

\n"; $count ++; return strcasecmp($x['name'], $y['name']);}function grade_sort($x, $y) { static $count = 1; echo "

Iteration $count: {$x['grade']} vs. {$y['grade']}

\n"; $count++; return $x['grade']
<?php// create the array.// Array structs// StudentId = > ["name" => "Name", "grade" => xx.x];$students = [    256 => ['name' => 'Jon', 'grade' => '98.5'],    2 => ['name' => 'Vance', 'grade' => '85.1'],    9 => ['name' => 'Step%本文@来源gao@!dai!ma.com搞$$代^@码!网搞代gaodaima码hen', 'grade' => '94.0'],    364 => ['name' => 'Steve', 'grade' => '85.1'],    68 => ['name' => 'Rob', 'grade' => '74.6'],];echo print_r($students, 1);uasort($students, function($x, $y){    return strcasecmp($x['name'], $y['name']);}); //保持键并使用自定义排序echo print_r($students, 1);uasort($students, function($x, $y){    return $x['grade'] 
<?phpfunction increment(&$i) {    $i++;}$num = 2;increment($num);echo $num;?>

以上就介绍了php递归,静态变量,匿名函数使用,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:php递归,静态变量,匿名函数使用
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址