STRPADBOTH
STRPADBOTH is a string-padding operation that adds padding to both sides of a string to reach a specified total width, effectively centering the content within a fixed field. It is commonly used to improve alignment in text output such as tables, headings, or console displays.
The operation typically takes three inputs: the source string, the target width (an integer), and the padding
Edge cases include returning the source unchanged if the target width is less than or equal to
Relation and usage: STRPADBOTH is conceptually similar to centering a string. In PHP, a related operation is