class Alunos{
public $nome;
}
$aluno= new Alunos();
$aluno->nome="Pedro";
if(propriedade=="nome")
{
echo $aluno->nome;
}
class Alunos{
public $nome;
}
$aluno= new Alunos();
$aluno->nome="Pedro";
if(propriedade=="nome")
{
echo $aluno->nome;
}
I think what you need is the property_exists
function. It returns true
if a class or object has a certain property and false
otherwise.
class Alunos{
public $nome;
}
$aluno= new Alunos();
$aluno->nome="Pedro";
if (property_exists("Alunos", "nome"))
{
echo $aluno->nome, PHP_EOL; // Pedro
}
Or by using the object itself:
if (property_exists($aluno, "nome"))
{
echo $aluno->nome, PHP_EOL; // Pedro
}