Skip to content
🔧

JSON을 PHP 클래스로

JSON 및 데이터 형식 · 무료 온라인 도구

JSON을 속성이 있는 PHP 클래스로 변환.

CoderNewbie 팀
성공
155 문자
1624 문자
<?php

class Root
{
    public string $name;

    public function getName(): string
    {
        return $this->name;
    }

    public function setName(string $name): void
    {
        $this->name = $name;
    }

    public int $age;

    public function getAge(): int
    {
        return $this->age;
    }

    public function setAge(int $age): void
    {
        $this->age = $age;
    }

    public bool $active;

    public function getActive(): bool
    {
        return $this->active;
    }

    public function setActive(bool $active): void
    {
        $this->active = $active;
    }

    public float $score;

    public function getScore(): float
    {
        return $this->score;
    }

    public function setScore(float $score): void
    {
        $this->score = $score;
    }

    public Address $address;

    public function getAddress(): Address
    {
        return $this->address;
    }

    public function setAddress(Address $address): void
    {
        $this->address = $address;
    }

    public array $skills;

    public function getSkills(): array
    {
        return $this->skills;
    }

    public function setSkills(array $skills): void
    {
        $this->skills = $skills;
    }

}

class Address
{
    public string $city;

    public function getCity(): string
    {
        return $this->city;
    }

    public function setCity(string $city): void
    {
        $this->city = $city;
    }

    public string $zip;

    public function getZip(): string
    {
        return $this->zip;
    }

    public function setZip(string $zip): void
    {
        $this->zip = $zip;
    }

}

타입 지정 속성

int, float, string, bool, array — PHP 7.4+ 타입 지정 속성.

중첩 클래스

객체는 재귀적으로 명명된 클래스가 됩니다.

게터 및 세터

모든 필드에 반환 유형이 있는 접근자가 생성됩니다.

JSON을 PHP 클래스로 사용 방법

  1. 1Paste your input data (JSON, CSV, XML, YAML, etc.) into the input field.
  2. 2The tool automatically processes and validates your data.
  3. 3Review the converted output in the result panel.
  4. 4Copy or download the converted result.

주요 기능

  • 100% 무료 — 가입, 구독, 광고 없음
  • 브라우저에서만 실행 — 데이터는 기기를 떠나지 않습니다
  • 빠르고 가벼움 — 즉시 결과 확인
  • 크로스 플랫폼 — 데스크톱, 태블릿, 모바일 지원

자주 묻는 질문

Can I convert large JSON files?

Yes, but performance depends on your browser. Files up to 10MB are generally handled well.

Do you validate the input?

Yes, most tools validate input and show error messages with line numbers for invalid data.

Can I download the converted result?

Yes, most conversion tools provide a download button for the output file.

관련 도구