и значения массива кинуть в style="" инпута?
class InputText
{
private $_html = '<input type="text" style="">';
function addStyles($arrInputText)
{
foreach ($arrInputText as $key => $value) {
return $key . "=" . $value.";";
}
}
$text = new InputText;
$text->addStyles(["width" => "500px", "border-color" => "red"]);
private $_html = '<input type="text" style="{styles}">'; $stylesArray = []; foreach ($arrInputText as $key => $value) { $stylesArray[] = $key . "=" . $value; } $html = str_replace('{styles}',implode(';',$stylesArray,$this->_html);
Обсуждают сегодня