3v4l.org

run code in 300+ PHP versions simultaneously
<?php $(".selected-action button").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 action = $(this).attr('data-action'); $.post(AJAX_URL, { action: action, token: THEME_NONCE_ACTION, resumes: resumes }, function (data) { // if (data.file) { // location.href = data.file; // } // // if (data.resumes) { // // alert('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/PqUhH on line 3
Process exited with code 255.

preferences:
175.42 ms | 1387 KiB | 36 Q