Как правильно выбрать версию xdebug?

public class String_Store_In_Array 
{
    public static void main(String[] args) 
    {
        System.out.println(" Q.37 Can you store string in array of integers. Try it.");

        String str="I am Akash";
        int arr[]=new int[str.length()];
        char chArr[]=str.toCharArray();
          char  ch;
        for(int i=0;i<str.length();i++)
        {

            arr[i]=chArr[i];
        }
        System.out.println("\nI have stored it in array by using ASCII value");
        for(int i=0;i<arr.length;i++)
        {

            System.out.print(" "+arr[i]);
        }
        System.out.println("\nI have stored it in array by using ASCII value to original content");
        for(int i=0;i<arr.length;i++)
        {
             ch=(char)arr[i];

            System.out.print(" "+ch);
        }
    }
}
0
задан tu_hang 17 January 2019 в 03:28
поделиться

1 ответ

он читает x86 (а не x86_64), VC15 и Thread Safe Build: yes

, поэтому вам понадобится x86, VC15 для ZTS (называется TS ] в Windows).

PHP 7.3 VC15 TS (32bit) не существует (по крайней мере, он еще не построен).

Вы можете запустить xdebug для PHP 7.2 в 32-битном режиме или обновить до 64-битной.

0
ответ дан Martin Zeitler 17 January 2019 в 03:28
поделиться
Другие вопросы по тегам:

Похожие вопросы: