// Берем все директории и файлы кроме . и ..
$directories = array_diff(scandir(__DIR__), ['.', '..']);
// Фильтруем и получаем только те директории, которые НЕ начинаются с __
array_filter($directories, function ($directory) {
return is_dir($directory) && strpos($directory, '__') !== 0;
});
$options = [
'ignore_errors' => true
];
$context = stream_context_create($options);
$file = file_get_contents('http://someurl.com', false, $context);
json_encode(unserialize($string));
span
аттрибут value
и name
? Вам нужна структура типа<span class="currency-shop1" id="sum" data-value="774.41">774.41 руб.</span>
<input type="hidden" name="total_sum" id="some_id" value="">
$('some-form').on('submit', function(event) {
var $this = $(this);
var priceInput = $this.find('#some_id');
var sum = $this.find('#sum').data('value');
priceInput.val(sum);
....Отправка формы со всеми полями....
});