- Home
- Categorie
- Coding e Sistemistica
- PHP
- PHP Fatal error: Call to a member function on null
-
PHP Fatal error: Call to a member function on null
Salve,
gentilmente un aiutoHo il seguente problema:
PHP Fatal error: Call to a member function getDescrizione() on nullDovuto alle seguenti righe di codice:
<meta name="description" content="<?=$metadata->getDescrizione()?>" /> <meta name="keywords" content="<?=$metadata->getKeywords()?>" />
Come posso risolvere?
Grazie
-
Sei sicuro di aver inizializzato l'oggetto $metadata?
-
Si infatti,
ora è tutto ok, risolto così:<?php $metadata=0; ?> <meta name="description" content="<?=$metadata->getDescrizione()?>" /> <meta name="keywords" content="<?=$metadata->getKeywords()?>" />
Grazie comunque e a presto