Home

Submit

Source

Feeds

Home » PHP » Functions ::

PHP Functions
If you work with PHP and databases, you will most guaranteed have to work with arrays. Arrays are great for holding lots of information in a simple, but organized way. This tutorial gives you the basic functions that is useful when working with arrays.
Related Tutorials
PHP Getting Started
Using the Internal Array Pointers to Access Elements in Arrays
PHP / Getting Started
The native array pointer functions in PHP allow you to traverse an array without actually referring to specific array elements. They can be particularly useful if you're using an associative array and wish to use the first element in the array. An internal array pointer, in PHP, is fundamentally an invisible pointer that points to a particular record in an array.

Site: www.talkphp.com Report - View Tutorial

PHP General Development
Working with Arrays
PHP / General Development
When simple variables are just not good enough, arrays come into play. The array section in the PHP manual, available at http://php.net/array, lists approximately 80 functions that are helpful. Therefore, this tutorial could be filled with array-related code alone. However, not all of these functions are really used often. Therefore, this tutorial presents the most important problems you'll have to solve when working with arraysand, of course, solutions for these problems.

Site: www.brainbell.com Report - View Tutorial

PHP Getting Started
Arrays
PHP / Getting Started
This tutorial describes: What is an array in PHP, Array related functions.

Site: www.herongyang.com Report - View Tutorial

PHP Getting Started
PHP and MySQL - Introduction
PHP / Getting Started
The topics covered in this tutorial include: * PHP basics, including script structure, variables, supported types, constants, expressions, and type conversions * Condition and branch statements supported by PHP, including if, if...else, and the switch statements * Looping statements * Arrays and array library functions * Strings and string library functions * Regular expressions * Date and time functions * Integer and float functions * How to write functions, reuse components, and determine the scope and type of variables * An introduction to PHP object-oriented programming support * Common mistakes made by programmers new to PHP, and how to solve them.

Site: www.brainbell.com Report - View Tutorial

PHP Functions
PHP Script Tips - Manipulating Arrays with Built-in Functions
PHP / Functions
A collection of 19 tips on PHP functions on arrays. Clear answers are provided with tutorial exercises on searching keys and values, sorting arrays, merging two arrays, looping on array elements, expanding and truncating arrays.

Site: dev.fyicenter.com Report - View Tutorial

PHP Functions
Introduction to PHP Functions
PHP / Functions
Functions are a very important part of PHP and it is probably safe to say that they are used in every single script. This tutorial will guide you through the basics of PHP functions to creating your own to do specific tasks.

Site: www.codebeach.com Report - View Tutorial

PHP Functions
Working with Directories
PHP / Functions
As is necessary for any language, PHP has a complete set of directory support functions. PHP gives you a variety of functions to read and manipulate directories and directory entries. Like other file-related parts of PHP, the functions are similar to the C functions that accomplish the same tasks, with some simplifications. This tutorial describes how PHP handles directories. You will look at how to create, remove, and read them.

Site: www.webcheatsheet.com Report - View Tutorial

PHP Getting Started
PHP array
PHP / Getting Started
In this tutorial I will show you how to work with arrays in PHP. You will learn how to create, sort or print an array. Besides this we will touch on multidimensional arrays as well.

Site: www.phpf1.com Report - View Tutorial

PHP Functions
PHP Functions : array_fill
PHP / Functions
array_fill() fills an array with num entries of the value of the value parameter, keys starting at the start_index parameter. Note that num must be a number greater than zero, or PHP will throw a warning.

Site: www.dotnetindex.com Report - View Tutorial

PHP Getting Started
Arrays
PHP / Getting Started
Arrays are a broad topic in any programming language and PHP is no exception. Hence this tutorial will be divided in several parts, this one being the first. An array can be defined as an orderly arrangement, or as a large number of objects, persons, etc. An array in PHP is a set of values tied to keys.

Site: www.carbotek.org Report - View Tutorial

PHP Getting Started
Arrays
PHP / Getting Started
Arrays are sets of data which can be defined in a PHP Script. Arrays can contain other arrays inside of them without any problems (called a multidimensional array). Arrays can be referred to as tables, even temporary databases. Making an array is very simple, using the array function.

Site: www.beginnersphp.co.uk Report - View Tutorial

PHP Functions
PHP string functions summary
PHP / Functions
One of PHP strengths are all the string functions. We give you a great help with starting to work with these functions.

Site: www.999tutorials.com Report - View Tutorial

PHP Getting Started
Understanding PHP Arrays and Their Basic Operations
PHP / Getting Started
A collection of 11 tips on PHP array introduction. Clear answers are provided with tutorial exercises on declaring and creating arrays, assigning and retrieving array elements, identifying elements by keys and indexes, copying arrays.

Site: dev.fyicenter.com Report - View Tutorial

PHP Functions
Functions in PHP
PHP / Functions
Functions are arguably one of the most useful features of PHP. They allow a programmer to encapsulate sections of code within a structure which can then be executed from anywhere else in the program flow.

Site: www.roughguidetophp.com Report - View Tutorial

PHP File Operations
Directories, Files and Images
PHP / File Operations
This tutorial describes: Directory functions, File system functions, Image functions, ShowPhoto.php - a sample program.

Site: www.herongyang.com Report - View Tutorial

 
Site Search

 
Categories
2D Graphics 3D Graphics Office Applications Databases Desktop Programming Web Development
 
Advertisement