Fonctions Uopz
PHP Manual

uopz_get_return

(No version information available, might only be in Git)

uopz_get_returnGets a previous set return value for a function

Description

mixed uopz_get_return ( string $class , string $function )
mixed uopz_get_return ( string $function , mixed $value )

Gets the return value of the function previously set by uopz_set_return().

Liste de paramètres

class

The name of the class containing the function

function

The name of the function

Valeurs de retour

The return value or Closure previously set.

Exemples

Exemple #1 uopz_get_return() example

<?php
uopz_set_return
("strlen"42);
echo 
uopz_get_return("strlen");
?>

L'exemple ci-dessus va afficher quelque chose de similaire à :

42

Fonctions Uopz
PHP Manual