Difference between revisions of "PHP Essentials"
From Techotopia
Line 100: | Line 100: | ||
#* [[Working with Strings and Text in PHP|Extracting and Replacing Substrings in PHP]] | #* [[Working with Strings and Text in PHP|Extracting and Replacing Substrings in PHP]] | ||
#* [[Working with Strings and Text in PHP|Replacing All Instances of a Word in a PHP String]] | #* [[Working with Strings and Text in PHP|Replacing All Instances of a Word in a PHP String]] | ||
+ | # [[PHP, Filesystems and File I/O]] | ||
+ | #* [[PHP, Filesystems and File I/O|Opening and Creating Files in PHP]] | ||
+ | #* [[PHP, Filesystems and File I/O|Closing Files in PHP]] | ||
+ | #* [[PHP, Filesystems and File I/O|Writing to a File using PHP]] | ||
+ | #* [[PHP, Filesystems and File I/O|Reading From a File using PHP]] | ||
+ | #* [[PHP, Filesystems and File I/O|Checking Whether a File Exists]] | ||
+ | #* [[PHP, Filesystems and File I/O|Moving, Copying and Deleting Files with PHP]] | ||
+ | #* [[PHP, Filesystems and File I/O|Accessing File Attributes]] | ||
+ | #* [[PHP, Filesystems and File I/O|PHP Output Buffering]] | ||
− | |||
* [[Working with Directories in PHP]] | * [[Working with Directories in PHP]] | ||
* [[An Overview of HTML Forms]] | * [[An Overview of HTML Forms]] |
Revision as of 19:19, 7 June 2007
- The History of PHP
- An Overview of PHP
- Creating a Simple PHP Script
- Commenting PHP Code
- An Introduction to PHP Variables
- Understanding PHP Variable Types
- PHP Constants
- PHP Operators
- PHP Flow Control and Looping
- PHP Functions
- PHP Arrays
- How to Create a PHP Array
- Accessing Elements in a PHP Array
- Creating an Associative Array
- Accessing Elements of an Associative Array
- Accessing Elements in a Multidimensional PHP Array
- Using PHP Array Pointers
- Changing, Adding and Removing PHP Array Elements
- Looping through PHP Array Elements
- Replacing Sections of an Array
- Sorting a PHP Array
- Sorting Associative Arrays
- Getting Information About PHP Arrays & other Array Functions
- Summary
- Working with Strings and Text in PHP
- Changing the Case of a PHP String
- Converting to and from ASCII Values
- Printing Formatted Strings in PHP
- PHP printf formatting specifiers
- Finding the Length of a PHP String
- Converting a String into a PHP Array
- Removing Leading and Trailing Whitespace from a PHP String
- Comparing Strings in PHP
- String Comparison Functions Return Value
- Accessing and Modifiying Characters in String
- Searching for Characters and Substrings in a PHP String
- Extracting and Replacing Substrings in PHP
- Replacing All Instances of a Word in a PHP String
- PHP, Filesystems and File I/O