Código PHP:
<?php
function MyFuncion(){
$this->resultado = 20;
$this->otro = 10;
return $this->resultado - $this->otro;
}
Y Otra duda para que se pone el simbolo (&) en las funciones un ejmplode de wordpress.
En &$response.
Código PHP:
function wp_remote_retrieve_header(&$response, $header) {
if ( is_wp_error($response) || ! isset($response['headers']) || ! is_array($response['headers']))
return '';
if ( array_key_exists($header, $response['headers']) )
return $response['headers'][$header];
return '';
}