Web Page Design India, Indian Web Designer, web page design company India, creating a web page, ecommerce web site design, ecommerce web page development
Web Page Design India, Indian Web Designer, web page design company India, creating a web page, ecommerce web site design, ecommerce web page development About Us Services Portfolio BPO Service Inquiry Contact Us
Web Page Design India, Indian Web Designer, web page design company India, creating a web page, ecommerce web site design, ecommerce web page development
Siliconinfo.com
Web Page Design India, Indian Web Designer, web page design company India, creating a web page, ecommerce web site design, ecommerce web page development Web Page Design India, Indian Web Designer, web page design company India, creating a web page, ecommerce web site design, ecommerce web page development
Web Page Design India, Indian Web Designer, web page design company India, creating a web page, ecommerce web site design, ecommerce web page development Web Page Design India, Indian Web Designer, web page design company India, creating a web page, ecommerce web site design, ecommerce web page development
Web Page Design India, Indian Web Designer, web page design company India, creating a web page, ecommerce web site design, ecommerce web page development
info@siliconinfo.com
Resources
Web Design India, Website Designing, Website Development,  Multimedia Solutuins, Ecommerce Solutions, Yahoo Store Designing
Php Resources - 1
Web Design India, Website Designing, Website Development,  Multimedia Solutuins, Ecommerce Solutions, Yahoo Store Designing
Php Resources - 2
Web Design India, Website Designing, Website Development,  Multimedia Solutuins, Ecommerce Solutions, Yahoo Store Designing
Php Resources - 3
Web Design India, Website Designing, Website Development,  Multimedia Solutuins, Ecommerce Solutions, Yahoo Store Designing
Php Resources - 4
Web Design India, Website Designing, Website Development,  Multimedia Solutuins, Ecommerce Solutions, Yahoo Store Designing
Php Resources - 5
Web Design India, Website Designing, Website Development,  Multimedia Solutuins, Ecommerce Solutions, Yahoo Store Designing
Php Resources - 6
Web Design India, Website Designing, Website Development,  Multimedia Solutuins, Ecommerce Solutions, Yahoo Store Designing
Php Resources - 7
Web Design India, Website Designing, Website Development,  Multimedia Solutuins, Ecommerce Solutions, Yahoo Store Designing
Php Resources - 8
Web Design India, Website Designing, Website Development,  Multimedia Solutuins, Ecommerce Solutions, Yahoo Store Designing
Php Resources - 9
Web Design India, Website Designing, Website Development,  Multimedia Solutuins, Ecommerce Solutions, Yahoo Store Designing
Php Resources - 10
Web Design India, Website Designing, Website Development,  Multimedia Solutuins, Ecommerce Solutions, Yahoo Store Designing
Php Resources - 11
Web Design India, Website Designing, Website Development,  Multimedia Solutuins, Ecommerce Solutions, Yahoo Store Designing
SQL Resources - 1
Web Design India, Website Designing, Website Development,  Multimedia Solutuins, Ecommerce Solutions, Yahoo Store Designing
SQL Resources - 2
Web Design India, Website Designing, Website Development,  Multimedia Solutuins, Ecommerce Solutions, Yahoo Store Designing
Dot net Resources - 1
Web Design India, Website Designing, Website Development,  Multimedia Solutuins, Ecommerce Solutions, Yahoo Store Designing
Dot net Resources - 2
Web Design India, Website Designing, Website Development,  Multimedia Solutuins, Ecommerce Solutions, Yahoo Store Designing
Dot net Resources - 3
Web Design India, Website Designing, Website Development,  Multimedia Solutuins, Ecommerce Solutions, Yahoo Store Designing
Multimedia Resources - 1
Web Design India, Website Designing, Website Development,  Multimedia Solutuins, Ecommerce Solutions, Yahoo Store Designing
Multimedia Resources - 2
Web Design India, Website Designing, Website Development,  Multimedia Solutuins, Ecommerce Solutions, Yahoo Store Designing
Multimedia Resources - 3
Web Design India, Website Designing, Website Development,  Multimedia Solutuins, Ecommerce Solutions, Yahoo Store Designing
Multimedia Resources - 4
Web Page Design India, Indian Web Designer, Web Site Design Company, web page design company India,  ecommerce web site design, ecommerce web page development

flock
(PHP 3>= 3.0.7, PHP 4 )

flock -- Portable advisory file locking
Description
bool flock ( resource handle, int operation [, int &wouldblock])


PHP supports a portable way of locking complete files in an advisory way (which means all accessing programs have to use the same way of locking or it will not work).

Note: flock() is mandatory under Windows.

flock() operates on handle which must be an open file pointer. operation is one of the following values:

To acquire a shared lock (reader), set operation to LOCK_SH (set to 1 prior to PHP 4.0.1).

To acquire an exclusive lock (writer), set operation to LOCK_EX (set to 2 prior to PHP 4.0.1).

To release a lock (shared or exclusive), set operation to LOCK_UN (set to 3 prior to PHP 4.0.1).

If you don't want flock() to block while locking, add LOCK_NB (4 prior to PHP 4.0.1) to operation.


flock() allows you to perform a simple reader/writer model which can be used on virtually every platform (including most Unix derivatives and even Windows). The optional third argument is set to TRUE if the lock would block (EWOULDBLOCK errno condition)

Returns TRUE on success or FALSE on failure.

Example 1. flock() example

<?php

$fp = fopen("/tmp/lock.txt", "w+");

if (flock($fp, LOCK_EX)) { // do an exclusive lock
fwrite($fp, "Write something here\n");
flock($fp, LOCK_UN); // release the lock
} else {
echo "Couldn't lock the file !";
}

fclose($fp);

?>


Note: Because flock() requires a file pointer, you may have to use a special lock file to protect access to a file that you intend to truncate by opening it in write mode (with a "w" or "w+" argument to fopen()).


Warning
flock() will not work on NFS and many other networked file systems. Check your operating system documentation for more details.

On some operating systems flock() is implemented at the process level. When using a multithreaded server API like ISAPI you may not be able to rely on flock() to protect files against other PHP scripts running in parallel threads of the same server instance!

flock() is not supported on antiquated filesystems like FAT and its derivates and will therefore always return FALSE under this environments (this is especially true for Windows 98 users).


 
 
  web design india, web site design india, website design india, web page design india Home | About us | Services | Portfolio | Products | Contact Us web design india, web site design india, website design india, web page design india