Author: ornicar2
Date: 2010-01-20 21:16:08 +0100 (Wed, 20 Jan 2010)
New Revision: 26954
Modified:
plugins/diemPlugin/trunk/dmCorePlugin/lib/basic/dmArray.php
Log:
[Diem]
- fixed comments
Modified: plugins/diemPlugin/trunk/dmCorePlugin/lib/basic/dmArray.php
===================================================================
--- plugins/diemPlugin/trunk/dmCorePlugin/lib/basic/dmArray.php 2010-01-20
19:43:44 UTC (rev 26953)
+++ plugins/diemPlugin/trunk/dmCorePlugin/lib/basic/dmArray.php 2010-01-20
20:16:08 UTC (rev 26954)
@@ -49,8 +49,7 @@
}
}
-
- // retourne la première valeur d'un tableau
+ // get first value of an array
public static function first($array)
{
if(!is_array($array))
@@ -69,7 +68,7 @@
return $a;
}
- // retourne la dernière valeur d'un tableau
+ // get last value of an array
public static function last($array)
{
if(!is_array($array))
@@ -88,13 +87,13 @@
return $a;
}
- // retourne la première clé d'un tableau
+ // get first key of an array
public static function firstKey($array)
{
return self::firstEntryIn(array_keys($array));
}
- // retourne les premières valeurs d'un tableau
+ // get first valueS of an array
public static function firsts($array, $nb)
{
if(!is_array($array))
--
You received this message because you are subscribed to the Google Groups
"symfony SVN" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/symfony-svn?hl=en.