Operator question

I am reading some sample code for instantiating a new object. The code had an array element that read like this…


'condition'=>'project_id=:projectId'

What is the operator =: ?

The operator is still ‘=’, ‘:projectId’ is for binding parameter, I think. You can see it here (reading record).

Thanks…I knew I was missing something basic.