CARVIEW |
Select Language
HTTP/2 200
date: Wed, 15 Oct 2025 01:46:20 GMT
content-type: text/html; charset=UTF-8
server: cloudflare
x-frame-options: DENY
x-content-type-options: nosniff
x-xss-protection: 1;mode=block
vary: accept-encoding
cf-cache-status: DYNAMIC
content-encoding: gzip
set-cookie: _csrf-frontend=22223dcd76f4484f73cfb05eb1e2977dd509837de515db1bac31550864165ae6a%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%22gJoqckPqHJTCBmjgBSQ3NS4OWn2yRne_%22%3B%7D; HttpOnly; Path=/
cf-ray: 98eba4669a96e8e0-BLR
Sorting an array alphabetically using PHP. - Pastebin.com
SHARE
TWEET

Sorting an array alphabetically using PHP.
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
- https://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html xmlns="https://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
- <head>
- <!-- Link to CSS file (make your own) -->
- <link rel="stylesheet" href="css/master.css" type="text/css" media="screen" title="Sandbox" charset="utf-8">
- <title>Sorting names alphabetically</title>
- </head>
- <body>
- <h1>
- This demonstrates sorting an array of names alphabetically using PHP.
- </h1>
- <p>
- Here is the original list of names stored in the array: <br />
- <?php
- /**
- * As stated above, this will sort the names within an array alphabetically.
- *
- * @author: Shaun_B
- * @date: 2012-10-09
- * @var: $names of type array
- *
- **/
- // Array containing the names:
- $names = array( 'Shaun', 'Eric', 'Sarah', 'John', 'Barry', 'Dave', 'Zach', 'Helena' );
- // Calls our function, sending the array:
- showNames( $names );
- echo '<br />';
- sort( $names, SORT_ASC );
- echo 'And now this should be sorted alphabetically (A - Z): <br />';
- showNames( $names );
- // Our showNames function:
- function showNames( $array = null ) {
- foreach( $array as $name ) {
- echo $name;
- echo '<br />';
- }
- }
- ?>
- </p>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
-
⭐⭐⭐MAKE $900 INSTANTLY⭐⭐
Java | 2 sec ago | 0.15 KB
-
⭐⭐⭐Make $15OO in 2O minutesV G⭐⭐
Java | 7 sec ago | 0.15 KB
-
💡 Instant BTC Profit Method ✅ Working
JavaScript | 13 sec ago | 0.24 KB
-
⭐⭐⭐MAKE $9OO INSTANTLY D G⭐⭐
Java | 13 sec ago | 0.15 KB
-
⭐⭐⭐Instant Profit Method⭐⭐
Java | 18 sec ago | 0.15 KB
-
📌 Swapzone +37% glitch ⭐ A
JavaScript | 20 sec ago | 0.25 KB
-
📝 MAKE $2500 IN 15 MIN ✅ Working
JavaScript | 23 sec ago | 0.24 KB
-
⭐⭐⭐MAKE $9OO INSTANTLY D M⭐⭐
Java | 24 sec ago | 0.15 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand