Table of Contents
我们的商店
客户订单
Home Backend Development PHP Tutorial php数组--将服务端的文件载入数组并显示成web页面

php数组--将服务端的文件载入数组并显示成web页面

Jun 23, 2016 pm 01:28 PM

首先在服务端存有文件orders.txt


将文件载入数组并显示,创建vieworder2.php

<?php $DOCUMENT_ROOT =$_SERVER['DOCUMENT_ROOT'];?>    <meta charset="UTF-8">    <title>客户订单</title>    <style>        table,tr,th,td{            border-collapse: collapse;            border: 1px solid #ccc;            padding: 5px;        }        th{            background-color: #ccccff;        }        td{            text-align: right;        }    </style><h1 id="我们的商店">我们的商店</h1><h2 id="客户订单">客户订单</h2><?php //将文件载入    $orders=file("$DOCUMENT_ROOT/L03/files/orders.txt");    //统计元素个数    $number_of_orders=count($orders);    //错误信息提示    if($number_of_orders==0){        echo "<p><strong>没有订单信息,请再试一试!</strong>";    }    echo "
Copy after login
"; for($i=0;$i "; } echo "
订购日期 男装 鞋子 眼镜 总计 收货地址
$line[0] $line[1] $line[2] $line[3] $line[4] $line[5]
";?>最后显示的页面内容为:


补充知识点:

<?php //创建一个数组$products=array('cloths','shoes','glasses');//创建一个1~10的升序数组$numbers=range(1,10);//创建一个1~10的奇数数组$odds=range(1,10,2);//创建一个a~z的字母数组$letters=range('a','z');//改变数组元素的内容$products[0]='spinner';//增加一个新元素到数组末尾$products[3]='skit';//显示数组内容echo "$products[0] $products[1] $products[2] $products[3]";//使用循环访问数组echo '<br/>';for($i=0;$i';foreach($odds as $current){//使用foreach    echo $current." ";}//初始化关联数组$prices=array('cloths'=>150,'shoes'=>300,'glasses'=>35);//使用循环语句访问关联数组的3种方法echo '<br>';foreach($prices as $key=>$value){//使用foreach    echo $key.'_'.$value.'<br>';}reset($prices);//使用reset函数将当前元素重新设置到数组开始处while($element=each($prices)){//使用each函数    echo $element['key'].'_'.$element['value'].'<br>';}reset($prices);while(list($product,$price)=each($prices)){//使用list函数    echo "$product - $price<br>";}//创建一个二维数组$products2=array( array('CLOTH','cloths',150),                  array('SHOE','shoes',300),                  array('GLASS','glasses',35));//使用双重for来访问数组元素for($row=0;$row';}//创建一个二维关联数组$products3=array(array('Code'=>'CLOTH','Description'=>'cloths','Price'=>150),                 array('Code'=>'SHOE','Description'=>'shoes','Price'=>300),                 array('Code'=>'GLASS','Description'=>'glasses','Price'=>35));//使用for循环访问二维关联数组for($row=0;$row';}//使用each函数和list函数来访问reset($products3);for($row=0;$row';}/************数组排序*****************///使用sort函数按字母升序进行排序$products4=array('cloths','shoes','glasses');sort($products4);//使用sort函数按数字升序进行排序$prices3=array(150,300,35);sort($prices3);//使用asort函数根据数组的每个元素值进行排序$prices4=array('cloths'=>150,'shoes'=>300,'glasses'=>35);asort($prices4);//使用ksort函数根据数组的关键字进行排序ksort($prices4);//另外对应的反向排序方法有rsort()、arsort()、krsort();//用户定义排序:usort()$products5=array( array('CLOTH','cloths',150),array('SHOE','shoes',300), array('GLASS','glasses',35));function compare($x,$y){    if($x[1]==$y[1]){        return 0;    }else if($x[1]  <br>  <p></p>  <p>数组常用函数补充</p>  <p>current($array_name)??返回第一个元素;</p>  <p>next($array_name)??将指针前移,然后再返回新的当前元素;</p>  <p>each($array_name)??在指针前移一个位置之前返回当前元素;</p>  <p>reset($array_name)??将返回指向数组第一个元素的指针;</p>  <p>end($array_name)??将指针移到数组末尾;</p>  <p>prev($array_name)??将当前指针往回移再返回新的当前元素,与next()相反;</p>  <p>array_walk()??对数组的每一个元素应用任何函数;</p>  <p>count()、sizeof()、array_count_values()??统计数组元素个数;</p>  <p>extract()??通过一个数组创建一系列的标量变量;</p>  <p>更多数组的知识点请查看php手册_数组</p>  <p><br> </p>  <p><br> </p>  <p></p>  <p class="sycode">   </p><p>版权声明:本文为博主原创文章,未经博主允许不得转载。</p>   
Copy after login
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel Tests Simplified HTTP Response Mocking in Laravel Tests Mar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log Analysis PHP Logging: Best Practices for PHP Log Analysis Mar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

HTTP Method Verification in Laravel HTTP Method Verification in Laravel Mar 05, 2025 pm 04:14 PM

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

Discover File Downloads in Laravel with Storage::download Discover File Downloads in Laravel with Storage::download Mar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

See all articles