<?php $attributes = array( 'autocomplete' => 'off', 'class' => 'email', 'id' => 'myform', 'value' => 'foo "fizz buzz" bar', ); echo implode( ' ', array_map( fn($k, $v) => sprintf( '%s="%s"', $k, htmlspecialchars( $v, ENT_QUOTES, 'UTF-8' ) ), array_keys($attributes), $attributes ) );
You have javascript disabled. You will not be able to edit any code.