Slackware: php


 
Thread Tools Search this Thread
Special Forums Cybersecurity Security Advisories (RSS) Slackware: php
# 1  
Old 12-05-2008
Slackware: php

LinuxSecurity.com: New php packages are available for Slackware 12.0, 12.1, and -current to fix security issues, as well as make improvements and fix bugs.

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. Slackware

Slackware 13.

Hello everyone. I am a newbie in operating systems. so far I've been playing with Ubuntu and I like it a lot. I heard about Slackware and I wanna try it. Last night I download the iso but It didn't fit in my usb or Dvd. it is a 4.2 GB. Is there one less than 4.2GB that will fit in my usb or DVD? ... (1 Reply)
Discussion started by: openation1
1 Replies

2. Slackware

Slackware

I want to know more about the Concurrency(Process Synchronization, Deadlocks) of a slackware, i know already the Concurrency but i want to know further what else is the Concurrency(Process Synchronization, Deadlocks) of a slackware. :cool: (1 Reply)
Discussion started by: green12
1 Replies
Login or Register to Ask a Question
APC_DELETE_FILE(3)							 1							APC_DELETE_FILE(3)

apc_delete_file - Deletes files from the opcode cache

SYNOPSIS
mixed apc_delete_file (mixed $keys) DESCRIPTION
Deletes the given files from the opcode cache. PARAMETERS
o $keys - The files to be deleted. Accepts a string, array of strings, or an APCIterator object. RETURN VALUES
Returns TRUE on success or FALSE on failure. Or if $keys is an array, then an empty array is returned on success, or an array of failed files is returned. EXAMPLES
Example #1 apc_delete_file(3) example <?php $filename = 'file.php'; if (apc_compile_file($filename)) { if (apc_delete_file($filename)) { echo "Successfully deleted file $filename from APC cache.", PHP_EOL; } } if (apc_compile_file($filename)) { if ($good = apc_delete_file(array($filename, 'donotexist.php'))) { var_dump($good); } } $bad = apc_delete_file('donotexist.php'); var_dump($bad); ?> The above example will output something similar to: Successfully deleted file file.php from APC cache. [Mon May 24 09:30:33 2010] [apc-warning] Could not stat file donotexist.php, unable to delete from cache. in /tmp/test.php on line 13. array(1) { [0]=> string(14) "donotexist.php" } [Mon May 24 09:30:33 2010] [apc-warning] Could not stat file donotexist.php, unable to delete from cache. in /tmp/test.php on line 18. bool(false) SEE ALSO
apc_clear_cache(3), apc_delete(3), apc_exists(3). PHP Documentation Group APC_DELETE_FILE(3)