This commit is contained in:
Kenio 2025-12-17 08:28:50 -03:00
parent 3807fa99e0
commit c2e5365041

View file

@ -1340,7 +1340,13 @@ class FinancialMovements
} }
/** Executo o SQL */ /** Executo o SQL */
return $this->stmt->execute(); return $this->stmt->execute();
preg_match_all('/:\w+/', $sql, $matches);
$placeholders = array_unique($matches[0]);
print_r($placeholders);
} }