Ejemplo n.º 1
0
 /**
  * PostgreSQL compliant and Safe Json Encode.
  * This should be used with PostgreSQL json / jsonb fields.
  *
  * @param STRING $y_mixed_content				:: A mixed variable
  * @return STRING 								:: JSON string
  *
  */
 public function json_encode($y_mixed_content)
 {
     //--
     return SmartPgsqlDb::json_encode($y_mixed_content);
     //--
 }