欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

$line[一] = intval($line[1]); //这个这样写是什么意思

程序员文章站 2022-06-15 09:01:18
...
$line[1] = intval($line[1]); //这个这样写是什么意思?
  //create short variable name
$DOCUMENT_ROOT = $_SERVER['DOCUMENT_ROOT'];
?>


Bob's Auto Parts - Customer Orders


Bob's Auto Parts


Customer Orders


//Read in the entire file.
//Each order becomes an element in the array
$orders= file("$DOCUMENT_ROOT/../orders/orders.txt");

// count the number of orders in the array
$number_of_orders = count($orders);

if ($number_of_orders == 0) {
echo "

No orders pending.
Please try again later.

";
}

echo "
\n";
echo "





";

for ($i=0; $i //split up each line
$line = explode("\t", $orders[$i]);

// keep only the number of items ordered
$line[1] = intval($line[1]);
$line[2] = intval($line[2]);
$line[3] = intval($line[3]);

// output each order
echo "






";
}

echo "
Order Date Tires Oil Spark Plugs Total Address
".$line[0]." ".$line[1]." ".$line[2]." ".$line[3]." ".$line[4]." ".$line[5]."
";
?>




$line[1] = intval($line[1]); //这个这样写是什么意思? intval手册是这样描述intval通过使用特定的进制转换(默认是十进制),返回变量 var 的 integer 数值。但是将这个integer数值赋给$line[1]起到什么作用?

网友评论

文明上网理性发言,请遵守 新闻评论服务协议

我要评论
  • $line[一] = intval($line[1]); //这个这样写是什么意思
  • 专题推荐

    作者信息
    $line[一] = intval($line[1]); //这个这样写是什么意思

    认证0级讲师

    推荐视频教程
  • $line[一] = intval($line[1]); //这个这样写是什么意思javascript初级视频教程
  • $line[一] = intval($line[1]); //这个这样写是什么意思jquery 基础视频教程
  • 视频教程分类