From 27a008690d6ff5d0144a67912e4d25a8e43f2d66 Mon Sep 17 00:00:00 2001 From: "Daniel P. Brown" Date: Wed, 31 Dec 2008 03:05:01 +0000 Subject: [PATCH] Typofix in example. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@272346 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/filesystem/functions/clearstatcache.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reference/filesystem/functions/clearstatcache.xml b/reference/filesystem/functions/clearstatcache.xml index 7631fe40ab..63dfb9cfd0 100644 --- a/reference/filesystem/functions/clearstatcache.xml +++ b/reference/filesystem/functions/clearstatcache.xml @@ -1,5 +1,5 @@ - + clearstatcache @@ -132,7 +132,7 @@ $file = 'output_log.txt'; function get_owner($file) { $stat = stat($file); - $user = posix_getpwuid($s['uid']); + $user = posix_getpwuid($stat['uid']); return $user['name']; }