3v4l.org

run code in 300+ PHP versions simultaneously
<?php $(".add-favorites").click(function () { var resumes = [], table = $('table > tbody > tr'); table.each(function () { var resume_id = $(this).attr('data-id'); if ($(this).hasClass('selected')) { resumes.push(resume_id); } }); if (typeof resumes !== 'undefined' && resumes.length > 0) { var company_id = $(this).attr('data-company'); $.post(AJAX_URL, { action: 'add_favorites', token: THEME_NONCE_ACTION, resumes: resumes, company_id: company_id }, function (data) { if (data.error) { alert('Error: Company ID empty'); } if (data.success) { alert('Success'); } //обнулить значения selected }) .fail(function () { alert('Server error'); }); } else { alert('Nothing selected'); } });
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.7
Parse error: syntax error, unexpected '(', expecting variable (T_VARIABLE) or '{' or '$' in /in/lOtoV on line 2
Process exited with code 255.

preferences:
183.66 ms | 1395 KiB | 36 Q