Php/keyword enddeclare

来自菜鸟教程
跳转至:导航、​搜索

PHP enddeclare关键字

Keywords PHP关键字

关闭一个声明块:

  <?php
$count = 0;
function example() {
  global $count;
  
  $count++;
  echo "$count instructions executed<br>";
}

  register_tick_function('example');

declare(ticks=1):
  $cars = 
  ["Ford", "Volvo", "BMW"];
  foreach($cars as $car) {
    
  echo "$car <br>";
  }
enddeclare;
?>

定义和用法

The enddeclare 关键字用于关闭 declare 使用开始的块 declare(...): 句法。

相关页面

The 宣布

关键词。

Keywords PHP关键字